home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Nov / di9811gd / Example3 / Unit1.dfm / Unit1.txt
Text File  |  1998-01-05  |  1KB  |  69 lines

  1. object Form1: TForm1
  2.   Left = 208
  3.   Top = 133
  4.   Width = 265
  5.   Height = 180
  6.   Caption = 'Example 3'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 4
  19.     Top = 2
  20.     Width = 100
  21.     Height = 13
  22.     Caption = 'Instantiated Threads:'
  23.   end
  24.   object btnLoad: TButton
  25.     Left = 132
  26.     Top = 18
  27.     Width = 120
  28.     Height = 25
  29.     Caption = '&Load library'
  30.     TabOrder = 0
  31.     OnClick = btnLoadClick
  32.   end
  33.   object btnUnload: TButton
  34.     Left = 132
  35.     Top = 46
  36.     Width = 120
  37.     Height = 25
  38.     Caption = '&Unload library'
  39.     TabOrder = 1
  40.     OnClick = btnUnloadClick
  41.   end
  42.   object lbThreads: TListBox
  43.     Left = 4
  44.     Top = 18
  45.     Width = 121
  46.     Height = 129
  47.     ItemHeight = 13
  48.     TabOrder = 4
  49.   end
  50.   object btnNewThread: TButton
  51.     Left = 132
  52.     Top = 94
  53.     Width = 120
  54.     Height = 25
  55.     Caption = 'Create &new thread'
  56.     TabOrder = 2
  57.     OnClick = btnNewThreadClick
  58.   end
  59.   object btnCloseThread: TButton
  60.     Left = 132
  61.     Top = 122
  62.     Width = 120
  63.     Height = 25
  64.     Caption = '&Close selected thread'
  65.     TabOrder = 3
  66.     OnClick = btnCloseThreadClick
  67.   end
  68. end
  69.